body {
    background: #121212;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;
}

.login-container {
    background: #1e1e1e;
    padding: 35px;
    border-radius: 10px;
    width: 320px;
    color: #fff;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #2c2c2c;
    border: 1px solid #333;
    color: white;
}

button {
    width: 100%;
    padding: 12px;
    background: #03dac6;
    border: none;
    color: black;
    font-weight: bold;
}


.login-box{
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.login-box h3{
    text-align: center;
    margin-bottom: 20px;
}

.form-control{
    background-color: #2c2c2c;
    border: none;
    color: white;
}

.form-control::placeholder{
    color: #aaa;
}

.form-control:focus{
    background-color: #2c2c2c;
    color: white;
    box-shadow: none;
}

.btn-custom{
    background-color: #00c853;
    border: none;
    color: white;
}

.btn-custom:hover{
    background-color: #00e676;
}

.info-box{
    background: #2c2c2c;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}